home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / etctab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  1.9 KB  |  62 lines

  1. /* GNU Emacs routines to deal with miscellaneous Lisp table objects.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU Emacs General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU Emacs, but only under the conditions described in the
  15. GNU Emacs General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU Emacs so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21. /* Written by Howard Gayle.  See chartab.c for details. */
  22.  
  23. #include "config.h"
  24. #include "lisp.h"
  25. #include "etctab.h"
  26.  
  27. struct Lisp_Etctab *all_etc_tables;
  28.  
  29. /* Return the char_t encoded by a Lisp integer.  Check for errors. */
  30. char_t
  31. get_char_arg (obj)
  32. register Lisp_Object obj;
  33. {
  34. register int i;
  35.  
  36. CHECK_NUMBER (obj, 1);
  37. i = XINT (obj);
  38. if ((i < 0) || (i > 255)) arg_out_of_range (obj);
  39. return ((char_t) i);
  40. }
  41.  
  42. /* Allocate a new table. */
  43. Lisp_Object
  44. make_etc_table (bytes, kind)
  45. register int   bytes; /* Size of object. */
  46. enum Lisp_Type kind;  /* Type of object. */
  47. {
  48. register struct Lisp_Etctab *p; /* Points to the new table. */
  49. register Lisp_Object         z; /* Return. */
  50. static int                       serial; /* Serial number. */
  51.  
  52. if (bytes <= sizeof (struct Lisp_Etctab)) abort ();
  53. p = (struct Lisp_Etctab *) malloc (bytes);
  54. consing_since_gc += bytes;
  55. if (p == ((struct Lisp_Etctab *) 0)) memory_full ();
  56. p->etc_ser = ++serial;
  57. p->etc_next = all_etc_tables;
  58. all_etc_tables = p;
  59. XSET (z, kind, p);
  60. return (z);
  61. }
  62.